/* Lokal ausgelieferte Web-Fonts — keine Verbindung zu Google.
 * ---------------------------------------------------------------------------
 * Bis 26.09.2026 lud index.html Inter und JetBrains Mono direkt von Googles
 * Font-CDN. Dabei uebertraegt der Browser JEDES eingeloggten Nutzers seine
 * IP-Adresse an einen Dritten (LG Muenchen I, 20.01.2022, 3 O 17493/20).
 * Bei einem Produkt, das mit Datensouveraenitaet wirbt, war das ein Widerspruch.
 *
 * Die Google-Hostnamen stehen hier bewusst NICHT ausgeschrieben, damit ein
 * grep ueber das Build-Verzeichnis eine echte Rueckkehr sofort anzeigt und
 * nicht an diesem Kommentar haengenbleibt.
 *
 * Die Dateien stammen direkt von den Herstellern, nicht von Google:
 *   Inter v4.1          github.com/rsms/inter        SIL OFL 1.1
 *   JetBrains Mono 2.304 github.com/JetBrains/JetBrainsMono  SIL OFL 1.1
 * Die Lizenztexte liegen daneben (Inter-LICENSE.txt, JetBrainsMono-OFL.txt) —
 * die OFL verlangt, dass sie mitgeliefert werden.
 *
 * Inter kommt als Variable Font: eine Datei deckt 400/500/600/700 ab und ist
 * kleiner als vier statische Schnitte zusammen. JetBrains Mono bietet kein
 * Variable-woff2, daher die drei tatsaechlich genutzten Gewichte einzeln.
 *
 * font-display: swap — Text ist sofort mit der System-Schrift lesbar und wird
 * ersetzt, sobald die Datei da ist. Kein unsichtbarer Text beim Laden.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900; /* Variable: ein File fuer alle Gewichte */
  font-display: swap;
  src: url('/fonts/InterVariable.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
}
