/*
 * Poppins - lokal gehostet (DSGVO-konform, kein Google-CDN)
 *
 * Die woff2-Dateien in DIESEN Ordner (/assets/fonts/) legen.
 * Download-Quelle (SIL Open Font License, kostenlos):
 * https://gwfh.mranftl.com/fonts/poppins  ("google-webfonts-helper")
 * -> Charsets: latin, latin-ext | Styles: 400, 500, 600, 700
 * -> "Copy CSS" nicht nötig, diese Datei ist schon fertig -
 *    nur die .woff2-Dateien mit exakt diesen Namen hier ablegen:
 *
 *   poppins-v23-latin_latin-ext-regular.woff2
 *   poppins-v23-latin_latin-ext-500.woff2
 *   poppins-v23-latin_latin-ext-600.woff2
 *   poppins-v23-latin_latin-ext-700.woff2
 *
 * (Falls die Versionsnummer im Dateinamen abweicht, z.B. v24:
 *  entweder Dateien umbenennen oder die vier url()-Pfade unten anpassen.)
 *
 * Solange die Dateien fehlen, greift automatisch der System-Font-Fallback
 * aus style.css - die Seite bleibt voll funktionsfähig.
 */

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('poppins-v23-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('poppins-v23-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('poppins-v23-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('poppins-v23-latin_latin-ext-700.woff2') format('woff2');
}
