/* ============================================================
   fonts.css — alle Schriften aus dem eigenen Webspace.

   Das Original lud Inter und JetBrains Mono von fonts.googleapis.com.
   Damit meldete jeder Aufruf die IP-Adresse des Besuchers an Google in
   die USA — ohne Einwilligung, und ohne dass ein Banner daran etwas
   ändern könnte: Schriften laden, bevor ein Banner sichtbar wird. Dazu
   rotiert Google die Dateinamen; eine gecachte Fonts-CSS von vor der
   Rotation liefert einen 404, und der Satz fällt auf Systemschriften
   zurück — bei einer typografiegetriebenen Modemarke bricht damit das
   ganze Bild.

   Inter liegt bereits unter /fonts/Inter/ für die Hauptseite. Die dort
   liegende Datei ist byteidentisch mit der, die Google ausliefert
   (SHA-256 verglichen) — deshalb absoluter Pfad statt zweiter Kopie.
   Sie ist variabel und deckt die hier genutzten Schnitte 200 bis 500 ab.

   JetBrains Mono ist ebenfalls variabel: eine Datei je Subset trägt 300
   und 400. Playfair Display lag schon lokal, aber als 294-KB-TTF —
   als WOFF2 sind es 104 KB bei gleichem Aussehen.

   Welche Subsets gebraucht werden, ist gemessen, nicht geraten.
   ============================================================ */

/* --- Inter (variabel, aus dem zentralen /fonts/ der Hauptseite) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/fonts/Inter/Inter-Variable-latin.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/fonts/Inter/Inter-Variable-latinExt.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- JetBrains Mono (variabel, 300–400 in einer Datei je Subset) --- */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-variable-latin.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-variable-latinExt.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Playfair Display (variabel, lag schon lokal — jetzt als WOFF2) --- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/PlayfairDisplay-Variable.woff2') format('woff2-variations');
}
