/*
 * Lokal eingebettete Space-Grotesk-Schrift (Gewichte 400/500/700), damit die
 * App komplett offline startet — siehe DESIGN.md "Technische Hinweise für
 * später". Eine einzelne Variable-Font-Datei (Latin-Subset, genügt für
 * DE/EN inkl. Umlaute/ß, die im Unicode-Bereich U+0000–00FF liegen) deckt
 * alle drei Gewichte ab; der Browser wählt die passende Achsen-Position
 * selbst anhand von font-weight — exakt dasselbe Verhalten wie zuvor über
 * Google Fonts (dort lieferte die css2-API dieselbe Datei für alle drei
 * @font-face-Regeln).
 */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./space-grotesk-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./space-grotesk-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./space-grotesk-latin.woff2") format("woff2");
}
