/*
 * fonts.css – lokal gehostete Schriftarten für die bewerberseitigen
 * STARTKLAR-Seiten (Bewerbungsdialog, Ergebnis, Kurzbewerbung).
 *
 * Ersetzt den vorherigen Live-Aufruf an fonts.googleapis.com/fonts.gstatic.com:
 * keine externe Anfrage mehr beim Seitenaufruf, keine IP-Übertragung an
 * Google – dadurch auch kein zusätzlicher Punkt in der Datenschutzerklärung
 * nötig.
 *
 * Schriften: Space Grotesk, Inter, JetBrains Mono – alle SIL Open Font
 * License 1.1, bezogen über die offiziellen Fontsource-Pakete
 * (@fontsource/space-grotesk, @fontsource/inter, @fontsource/jetbrains-mono).
 *
 * Nur "latin"-Subset eingebunden (kein "latin-ext"): deutsche Umlaute und ß
 * liegen im Unicode-Bereich U+0080–00FF (Latin-1 Supplement) und sind damit
 * bereits im latin-Subset enthalten – latin-ext wird nur für zusätzliche
 * osteuropäische Zeichen gebraucht, hier also unnötig.
 */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('space-grotesk-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('space-grotesk-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('space-grotesk-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('inter-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('jetbrains-mono-latin-500-normal.woff2') format('woff2');
}
