/* frontend/css/fonts.css
   Selbst gehostete Schriften (Libre Baskerville, JetBrains Mono) statt Google Fonts live von
   fonts.googleapis.com/fonts.gstatic.com zu laden – das hätte bei jedem Seitenaufruf die
   IP-Adresse der Besucher:innen an Google übertragen, ohne dass das in der
   Datenschutzerklärung stand (bekanntes Abmahnrisiko, siehe LG München I, Az. 3 O 17493/20).
   Optisch identisch, da es dieselben Schriftdateien sind – nur ohne Drittanbieter-Verbindung.
   Enthält nur den "latin"-Subset (deckt inkl. deutscher Umlaute/ß ab, U+0000–00FF). */

@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/libre-baskerville-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/libre-baskerville-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/libre-baskerville-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-400.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');
}
