/* =========================================================
   SECTION MONSTERS – Selbst gehostete Schriftart (Inter)
   css/fonts.css

   Ersetzt die Google-Fonts-Einbindung (fonts.googleapis.com /
   fonts.gstatic.com) aus DSGVO-Gründen: Beim Laden von Google
   Fonts per <link> würde die IP-Adresse jedes Besuchers an
   Google-Server übertragen – ohne Einwilligung unzulässig
   (bekanntes Abmahnrisiko, u.a. LG München I, Az. 3 O 17493/20).

   Die eigentlichen Schriftdateien müssen manuell heruntergeladen
   und unter /fonts/ auf dem Server abgelegt werden – siehe
   ANLEITUNG-GOOGLE-FONTS-SELBST-HOSTEN.md. Diese CSS-Datei
   erwartet genau diese Dateinamen.
   ========================================================= */

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

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

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

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

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

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