/*
  Lokal gehostete Schriften. Ersetzt die frühere Einbindung über
  fonts.googleapis.com / fonts.gstatic.com — dadurch wird keine
  Besucher-IP mehr an Google übertragen.

  Benötigte Dateien in /assets/fonts/ (Format: woff2):
    space-grotesk-400.woff2   space-grotesk-500.woff2
    space-grotesk-600.woff2   space-grotesk-700.woff2
    inter-400.woff2           inter-500.woff2           inter-600.woff2
    space-mono-400.woff2      space-mono-700.woff2

  Siehe src/assets/fonts/README.md zur Beschaffung.
  font-display:swap => Text ist sofort lesbar, kein FOIT.
*/

/* ---------- Space Grotesk (Display) ---------- */
@font-face{
  font-family:"Space Grotesk";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("/assets/fonts/space-grotesk-400.woff2") format("woff2");
}
@font-face{
  font-family:"Space Grotesk";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("/assets/fonts/space-grotesk-500.woff2") format("woff2");
}
@font-face{
  font-family:"Space Grotesk";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("/assets/fonts/space-grotesk-600.woff2") format("woff2");
}
@font-face{
  font-family:"Space Grotesk";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
}

/* ---------- Inter (Fließtext) ---------- */
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face{
  font-family:"Inter";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("/assets/fonts/inter-600.woff2") format("woff2");
}

/* ---------- Space Mono (Auszeichnung, Eyebrows, Buttons) ---------- */
@font-face{
  font-family:"Space Mono";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("/assets/fonts/space-mono-400.woff2") format("woff2");
}
@font-face{
  font-family:"Space Mono";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("/assets/fonts/space-mono-700.woff2") format("woff2");
}
