/* ============================================================
   AeroVision — selbst gehostete Schriften
   Angelegt 05.09.2026. Ersetzt die Einbindung von Google Fonts.

   Grund: Beim Laden von fonts.googleapis.com wird die IP-Adresse jedes
   Besuchers an Google uebertragen. Selbst gehostet passiert das nicht.
   Nebeneffekt: schneller, weil eine fremde DNS-Aufloesung und ein
   zusaetzlicher TLS-Handschlag wegfallen.

   Zeichensatz: "latin". Deckt Deutsch und Englisch vollstaendig ab,
   inklusive ä ö ü ß und den franzoesischen Akzenten.

   font-display: swap — der Text ist sofort lesbar (in der Ersatzschrift)
   und wird ausgetauscht, sobald die echte Schrift da ist. Genau das
   Verhalten, das vorher der Parameter &display=swap bewirkt hat.
   ============================================================ */

/* --- Michroma: Ueberschriften und Logo --- */
@font-face {
  font-family: 'Michroma';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/michroma-400.woff2') format('woff2');
}

/* --- Inter: Fliesstext und Bedienelemente --- */
@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');
}
