/* 
 * Lokale Einbettung der Schriftarten
 * 
 * ANLEITUNG:
 * 1. Erstelle einen Ordner "fonts" im Hauptverzeichnis deines Projekts.
 * 2. Lade die Schrift-Dateien herunter, z.B. über https://gwfh.mranftl.com/fonts
 * 3. Lade die .woff2-Dateien für folgende Schriftschnitte herunter:
 *    - Lato: regular, 700
 *    - Merriweather: regular
 *    - Playfair Display: 700
 * 4. Benenne sie um (falls nötig) und lege sie in den "fonts"-Ordner.
 */

/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
}
/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
}

/* merriweather-regular - latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/merriweather-v30-latin-regular.woff2') format('woff2');
}

/* playfair-display-700 - latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v30-latin-700.woff2') format('woff2');
}