/*
 * fonts.css — Self-hosted @font-face (Kontrakt ARCHITEKTUR.md Nr. 7).
 *
 * Kein CDN, kein Google-Fonts-Request. Die woff2-Dateien liegen bereits in
 * ../fonts/ (assets/fonts/). Elementor-Kit-6-Rollen:
 *   Roboto      400 (Text) / 500 (Accent) / 600 (Head) / 700 (Reserve)
 *   Roboto Slab 400 (Blog-Meta) / 600 (Reserve)
 *   Poppins     400 / 500 / 600 (Widget-/Nav-/Fließtext)
 *
 * font-display:swap = sofort sichtbarer Fallback-Text, Austausch nach Ladung.
 * Diese Datei wird als eigenes Stylesheet 'kiel-fonts' enqueued (inc/enqueue.php)
 * und im Block-Editor via add_editor_style() geladen (inc/setup.php); die Pfade
 * sind relativ zu assets/css/ und zeigen auf ../fonts/.
 *
 * @package kiel-gp-child
 */

/* ---------------- Roboto (Head 600 / Text 400 / Accent 500) ---------------- */
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/roboto-400.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/roboto-500.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/roboto-600.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/roboto-700.woff2") format("woff2");
}

/* ------------------------------ Roboto Slab ------------------------------- */
@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/roboto-slab-400.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto Slab";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/roboto-slab-600.woff2") format("woff2");
}

/* -------------------------------- Poppins --------------------------------- */
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-400.woff2") format("woff2");
}
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-500.woff2") format("woff2");
}
@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-600.woff2") format("woff2");
}
