/*
Selbst gehostete Google Fonts (Sora, Work Sans) statt Laden von Googles
eigenen Servern. Grund: DSGVO-Risiko — externes Nachladen von Google Fonts
überträgt die IP-Adresse der Besucher an Google ohne Einwilligung (bekanntes
Abmahnrisiko in Deutschland, LG München 2022). Dateien liegen unter
assets/fonts/, Lizenz: SIL Open Font License (beide Google-Fonts-Schriften
sind dafür ausdrücklich freigegeben, self-hosting ist Google-seitig
vorgesehen und üblich).

Beide Dateien sind Variable Fonts (ein File deckt den ganzen Schriftschnitt-
Bereich ab), daher genügt "font-weight: <von> <bis>" statt einer Datei pro
Schriftschnitt.
*/
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/sora-variable.woff2') format('woff2-variations'), url('../fonts/sora-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/work-sans-variable.woff2') format('woff2-variations'), url('../fonts/work-sans-variable.woff2') format('woff2');
}
