/* Selbst gehostete Schriftarten (Bricolage Grotesque, Inter) - ersetzt Google
   Fonts (fonts.googleapis.com/fonts.gstatic.com). Direktes Laden von Google
   Fonts uebertraegt die IP-Adresse jedes Besuchers an Google (DSGVO-Thema,
   siehe LG Muenchen I, Az. 3 O 17493/20) - durch das lokale Hosting hier
   verlaesst dabei keine IP-Adresse mehr den eigenen Server.

   Beide Dateien sind Variable Fonts (eine Datei deckt den kompletten
   Gewichtsbereich ab), daher genuegt je ein @font-face-Block mit
   font-weight-Bereich statt einer Regel pro einzelner Gewichtsstufe. */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}
