/* ============================================================================
   Self-gehostete Fonts (ZTL-6 Lauf 2, vorher Google Fonts/Fontshare).
   Eigene Datei statt Teil von style.css, weil admin.js und releases.js
   style.css bewusst NICHT einbinden (Klassen-Kollisionen), aber dieselben
   Schriften brauchen - von allen drei HTML-Quellen per <link> eingebunden,
   nicht per @import (würde das Laden verzögern, FOUT-Risiko).
   Satoshi 600 existiert bei Fontshare nicht als statischer Schnitt, nur
   500+700 - font-weight:600 matched daher auf 700 (Browser-Standardverhalten
   bei fehlendem Gewicht), wie schon vor Lauf 2.
   Satoshi 900 vorbereitend ergänzt (bevorstehendes Login-Seiten-Redesign) -
   aktuell noch NICHT im Code verwendet, keine bestehende Regel referenziert
   font-weight:900. 800 existiert bei Fontshare nicht (geprüft, wie 600).
   ============================================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/satoshi-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/satoshi-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/satoshi-900.woff2') format('woff2');
}
