/*
 * apdp-fonts-local.css
 * ─────────────────────────────────────────────────────────────────
 * Declaraciones @font-face para servir las fuentes localmente.
 * Este archivo SOLO se carga si los archivos .woff2 están en /fonts/
 * (el plugin lo detecta automáticamente).
 *
 * font-display: swap → muestra texto con fuente del sistema mientras
 * carga la fuente custom. Evita FOIT (texto invisible en la carga).
 * ─────────────────────────────────────────────────────────────────
 */

/* ── Playfair Display ── */
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-400i.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-500i.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('playfair-display-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Nunito ── */
@font-face {
    font-family: 'Nunito';
    src: url('nunito-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('nunito-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('nunito-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('nunito-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
