/* ============================================================
   LOKALE SCHRIFTEN für 2ter. Blick
   Ersetzt Google Fonts (Abmahnrisiko wegen IP-Übertragung).

   SO GEHT'S (einmalig, 5 Minuten):
   1. Öffne https://gwfh.mranftl.com (google-webfonts-helper)
   2. Lade diese drei Fonts als woff2 herunter (Charset: latin):
      - Kaushan Script (regular 400)
      - Montserrat (600, 700, 800)
      - Inter (400, 500, 600)
   3. Lege die .woff2-Dateien in einen Ordner /fonts auf deiner Site
   4. Diese Datei als /fonts.css mit hochladen
   5. In allen HTML-Dateien die drei Google-Zeilen im <head> ersetzen:
      RAUS:  <link rel="preconnect" href="https://fonts.googleapis.com">
             <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
             <link href="https://fonts.googleapis.com/css2?family=..." rel="stylesheet">
      REIN:  <link rel="stylesheet" href="/fonts.css">
   (Impressum & Datenschutz binden /fonts.css bereits ein.)
   ============================================================ */

@font-face{
  font-family:'Kaushan Script';
  font-style:normal;font-weight:400;font-display:swap;
  src:url('/fonts/kaushan-script-v18-latin-regular.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;font-weight:600;font-display:swap;
  src:url('/fonts/montserrat-v30-latin-600.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;font-weight:700;font-display:swap;
  src:url('/fonts/montserrat-v30-latin-700.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;font-weight:800;font-display:swap;
  src:url('/fonts/montserrat-v30-latin-800.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;font-weight:400;font-display:swap;
  src:url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;font-weight:500;font-display:swap;
  src:url('/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;font-weight:600;font-display:swap;
  src:url('/fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* Hinweis: Falls die Dateinamen aus dem Helper leicht anders lauten
   (Versionsnummer), einfach hier die src-Pfade anpassen. */
