/* Selbst gehostete Schriften (Fraunces + Work Sans) statt Google Fonts.
   Grund: Beim direkten Laden von fonts.googleapis.com wird die Besucher-IP
   ohne Einwilligung an Google übertragen — das gilt in Deutschland als
   DSGVO-Risiko (LG München, 2022). Selbst gehostet entfällt das komplett.

   Beide Schriften sind "Variable Fonts": eine einzige Datei deckt alle
   Gewichte (100–900) gleichzeitig ab, statt einzelner Dateien pro
   Schriftschnitt. Erwartet daher genau zwei Dateien in assets/fonts/
   (siehe README für die genauen Namen/Download-Anleitung). */

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
