/*
 * Fuentes locales (self-hosted) — sin Google Fonts, cumple GDPR.
 *
 * 1. Coloca tus archivos .woff2 en esta carpeta (/assets/fonts/).
 * 2. Ajusta el nombre, peso y ruta abajo.
 * 3. font-display: swap → muestra texto al instante (sin pantalla en blanco).
 * 4. Activa el preload en functions.php (bricore_preload_local_fonts).
 *
 * Esta hoja se encola en functions.php cuando existe.
 * Borra este comentario en producción.
 */

/* Ejemplo — descomenta y ajusta al añadir tu fuente:

@font-face {
    font-family: "MiFuente";
    src: url("mi-fuente-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MiFuente";
    src: url("mi-fuente-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bricore-font: "MiFuente", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--bricore-font);
}

*/
