/* Selbst gehostete Schriften (Fraunces, Manrope) statt Google Fonts CDN.
   Grund: Laden von Google Fonts direkt von Googles Servern überträgt die
   IP-Adresse der Besucher an Google ohne Einwilligung - das wurde vom
   LG München I (2022) als DSGVO-Verstoß gewertet. Selbst hosten vermeidet
   das komplett und ist zusätzlich schneller (kein externer Request). */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-variable-latin.woff2') format('woff2-variations'), url('../fonts/fraunces-variable-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-variable-latin.woff2') format('woff2-variations'), url('../fonts/manrope-variable-latin.woff2') format('woff2');
}
