/*
* Tipografías del Tema
* Las fuentes de Google ya están cargadas desde typography-settings.php,
* aquí solo definimos cómo se aplican en el tema
*/

/* Aplicar Poppins como fuente principal o por defecto */
body,
html {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* Encabezados con Poppins Semi-Bold */
h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Títulos principales (h1) más bold */
h1 {
    font-weight: 700;
}

strong, b {
    font-weight: 500;
} 

/* Menús de navegación */
.main-navigation,
.site-header nav {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Botones con Poppins Medium */
.btn,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Fuentes monoespaciadas para código */
code,
pre,
kbd,
samp {
    font-family: 'Courier New', Courier, monospace;
}

/* Variables CSS para pesos de fuente (opcional) */
:root {
    --font-family-base: 'Poppins', sans-serif;
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}