/*
  LOCAL FONTS – Schwarz Versichert
  =============================================================
  Schritt 1: Fonts herunterladen von https://gwfh.mranftl.com
             (Google Webfonts Helper – DSGVO-konform)
  
  Montserrat (400, 500, 600, 700, 800):
  → https://gwfh.mranftl.com/fonts/montserrat?subsets=latin,latin-ext
  
  Open Sans (400, 500, 600):
  → https://gwfh.mranftl.com/fonts/open-sans?subsets=latin,latin-ext
  
  Schritt 2: .woff2 Dateien in /fonts/ ablegen
  Schritt 3: Diese CSS-Datei ist dann fertig konfiguriert
  =============================================================
*/

/* ── MONTSERRAT ── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

/* ── OPEN SANS ── */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2');
}
