/*
  Lokale Schriften (DSGVO-konform, keine Anfrage an Google).
  Die zugehoerigen .woff2-Dateien muessen im selben Ordner liegen:
    - inter-400.woff2, inter-500.woff2, inter-600.woff2
    - dmserifdisplay-400.woff2, dmserifdisplay-italic.woff2
  Bezugsquelle (kostenlos, Self-Hosting-Pakete): https://gwfh.mranftl.com/fonts
  Solange die Dateien fehlen, faellt der Browser automatisch auf
  Georgia/serif bzw. system-ui zurueck (siehe font-family-Fallbacks im Design-CSS).
*/

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('inter-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('inter-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('inter-600.woff2') format('woff2');
}
@font-face {
	font-family: 'DM Serif Display';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('dmserifdisplay-400.woff2') format('woff2');
}
@font-face {
	font-family: 'DM Serif Display';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('dmserifdisplay-italic.woff2') format('woff2');
}
