/* © David Dülle - https://duelle.org
 *
 * Self-Hosted Web-Fonts. Verhindert dynamisches Laden von Google Fonts
 * (LG München I, 3 O 17493/20 - DSGVO-Verstoß durch IP-Übertragung an Google).
 *
 * Die WOFF2-Dateien müssen einmalig manuell heruntergeladen werden:
 *   1. https://gwfh.mranftl.com/fonts → Bebas Neue + Nunito
 *   2. Charset: latin + latin-ext
 *   3. Format: WOFF2
 *   4. Heruntergeladenes ZIP entpacken in dieses Verzeichnis (frontend/public/fonts)
 *      sowie in landing/fonts (für die Marketing-Site).
 *
 * Erwartete Dateien:
 *   bebas-neue-v16-latin-regular.woff2
 *   nunito-v32-latin-regular.woff2
 *   nunito-v32-latin-600.woff2
 *   nunito-v32-latin-700.woff2
 *   nunito-v32-latin-800.woff2
 *   (Versions-Suffixe können sich beim Download unterscheiden, dann hier
 *   den Pfad anpassen.)
 */

/* Bebas Neue, Display-Font für Headlines */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
}

/* Nunito, Body-Font in 4 Gewichten */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/nunito-v32-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/nunito-v32-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/nunito-v32-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/nunito-v32-latin-800.woff2') format('woff2');
}
