/*
 * fonts.css  —  Version 1.0  —  Stand: 09.09.2026, 22:25 Uhr
 *
 * Bindet die Schriften vom eigenen Server ein statt von Google.
 * Damit wird beim Seitenaufruf keine Verbindung zu Google hergestellt
 * und keine IP-Adresse der Besucher uebertragen.
 *
 * Erwartete Dateien im selben Ordner (/fonts/):
 *   karla-400.woff2         karla-500.woff2
 *   karla-600.woff2         karla-700.woff2
 *   lora-400.woff2          lora-500.woff2
 *   lora-400italic.woff2
 *
 * Speicherort: /fonts/
 */

/* ---------- Karla — Bedienung und Fliesstext ---------- */
@font-face{
  font-family:'Karla';
  src:url('karla-400.woff2') format('woff2');
  font-weight:400; font-style:normal;
  font-display:swap;                 /* Text sofort sichtbar, Schrift tauscht nach */
}
@font-face{
  font-family:'Karla';
  src:url('karla-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Karla';
  src:url('karla-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Karla';
  src:url('karla-700.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}

/* ---------- Lora — Ueberschriften und Blasen ---------- */
@font-face{
  font-family:'Lora';
  src:url('lora-400.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Lora';
  src:url('lora-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Lora';
  src:url('lora-400italic.woff2') format('woff2');
  font-weight:400; font-style:italic; font-display:swap;
}
