/*
 * Kollektif — self-hosted @font-face declarations.
 *
 * Reemplaza el stylesheet del CDN (fonts.cdnfonts.com/css/kollektif).
 * Encolado vía config/assets.php → FontDef 'kollektif' → EnqueueProvider.
 *
 * src es relativo a ESTE fichero (el navegador resuelve las URLs de @font-face
 * respecto a la hoja de estilos, no al documento), por eso basta el nombre del
 * .ttf — están en el mismo directorio.
 *
 * font-display: swap → texto visible con fallback mientras carga (Kollektif es
 * una fuente terciaria: datos UI, labels de chart, números pequeños).
 */

@font-face {
	font-family: 'Kollektif';
	src: url('Kollektif.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Kollektif';
	src: url('Kollektif-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Kollektif';
	src: url('Kollektif-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Kollektif';
	src: url('Kollektif-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}
