/* custom.css */

/* 1. IMPORTAMOS LAS FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Droid+Serif:ital,wght@0,400;0,700;1,400&family=Raleway:wght@700&display=swap');

/* 2. FUERZA BRUTA TIPOGRÁFICA (Afecta a todo el sitio) */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, li, input, button, aside, nav, footer, header {
    font-family: 'Montserrat', sans-serif !important;
}

/* 3. FUENTE DE LECTURA (Para los artículos de historia) */
p, .principal p, .cuerpo-texto p, em {
    font-family: 'Droid Serif', serif !important;
}

/* 4. FUENTE DE TÍTULOS */
h1, h2, h3, h4, h5, h6, .font-alt {
    font-family: 'Raleway', sans-serif !important;
}

/* 5. LIMPIEZA DE BORDES DEL TEMPLATE (Solo por seguridad) */
.container, .container-fluid, .full-wrapper {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
}