/* =========================================================
   3DAIVIDEO — Schriften lokal einbinden
   =========================================================

   WARUM: Werden Schriften direkt von Google geladen, geht die
   IP-Adresse jedes Besuchers an Google. Deutsche Gerichte haben
   dafür Schadenersatz zugesprochen. Lokal eingebunden fällt das weg.

   ---------------------------------------------------------
   SCHRITT 1 — Schriftdateien holen
   ---------------------------------------------------------
   Öffne:  https://gwfh.mranftl.com/fonts

   Suche nacheinander diese drei Schriften und lade sie herunter:

     • Anton        → Stil: regular
     • Barlow       → Stile: 300, regular, 500, 600
     • Space Mono   → Stile: regular, 700

   Einstellungen jeweils:
     Charsets  = latin        (deckt ä ö ü ß ab)
     Styles    = wie oben
     Copy CSS  = "Modern Browsers"

   Du bekommst .woff2-Dateien. Insgesamt sieben Stück.

   ---------------------------------------------------------
   SCHRITT 2 — Dateien ablegen
   ---------------------------------------------------------
   Lege im Projekt einen Ordner an:  /fonts
   Alle sieben .woff2-Dateien hineinlegen.

   Struktur danach:
     index.html
     impressum.html
     datenschutz.html
     fonts.css
     fonts/
       anton-v27-latin-regular.woff2
       barlow-v13-latin-300.woff2
       ...

   HINWEIS: Die Versionsnummern im Dateinamen (v25, v12 …)
   ändern sich je nach Download. Gleiche die Namen unten an
   die Dateien an, die du tatsächlich bekommen hast.

   ---------------------------------------------------------
   SCHRITT 3 — In den drei HTML-Dateien austauschen
   ---------------------------------------------------------
   LÖSCHEN (in allen drei Dateien, direkt unter <title>):

     <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=Anton…" rel="stylesheet">

   STATTDESSEN EINFÜGEN:

     <link rel="stylesheet" href="/fonts.css">

   ---------------------------------------------------------
   SCHRITT 4 — Prüfen
   ---------------------------------------------------------
   Seite öffnen, Rechtsklick → Untersuchen → Reiter "Netzwerk",
   Seite neu laden. Es darf KEINE Anfrage an fonts.googleapis.com
   oder fonts.gstatic.com mehr auftauchen.

   ========================================================= */


/* ---------- ANTON (Überschriften) ---------- */
@font-face{
  font-family:'Anton';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('/fonts/anton-v27-latin-regular.woff2') format('woff2');
}

/* ---------- BARLOW (Fließtext) ---------- */
@font-face{
  font-family:'Barlow';
  font-style:normal;
  font-weight:300;
  font-display:swap;
  src:url('/fonts/barlow-v13-latin-300.woff2') format('woff2');
}
@font-face{
  font-family:'Barlow';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('/fonts/barlow-v13-latin-regular.woff2') format('woff2');
}
@font-face{
  font-family:'Barlow';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('/fonts/barlow-v13-latin-500.woff2') format('woff2');
}
@font-face{
  font-family:'Barlow';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('/fonts/barlow-v13-latin-600.woff2') format('woff2');
}

/* ---------- SPACE MONO (Timecode, Labels) ---------- */
@font-face{
  font-family:'Space Mono';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('/fonts/space-mono-v17-latin-regular.woff2') format('woff2');
}
@font-face{
  font-family:'Space Mono';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('/fonts/space-mono-v17-latin-700.woff2') format('woff2');
}
