/**
 * Revier Boxing – lokal gehostete Schriften (Self-Hosting, Option A).
 *
 * Die Schriften „Inter" und „Oswald" werden aus dem Theme ausgeliefert
 * (assets/fonts/*.woff2, SIL Open Font License – siehe *-OFL.txt). Dadurch
 * entfällt jede Verbindung zu Google (fonts.googleapis.com / fonts.gstatic.com);
 * die Fonts sind damit einwilligungsfrei und müssen NICHT über den
 * Consent-Banner blockiert werden.
 *
 * font-display: swap → Text ist sofort mit der System-Fallback-Schrift sichtbar
 * und wird nachträglich ausgetauscht (kein Render-Blocking).
 */

/* Inter (Fließtext) – 400 / 500 / 600, Subsets latin + latin-ext. */
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-600.woff2') format('woff2');
}

/* Oswald (Display/Headlines) – 500 / 600 / 700, Subsets latin + latin-ext. */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/oswald-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/oswald-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/oswald-700.woff2') format('woff2');
}
