/* Configuración de fuentes */
:root {
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Lora', serif;
}

/* Preconexiones para mejorar rendimiento */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Lato:wght@400;700;900&family=Montserrat:wght@500;600;700&display=swap');

/* Estilos base de tipografía */
body {
    font-family: var(--font-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.hero__logo {
    font-family: var(--font-heading);
}

.nav__list li a {
    font-family: var(--font-heading);
}

.btn {
    font-family: var(--font-heading);
}

.section-title {
    font-family: var(--font-heading);
}

.feature-card__title {
    font-family: var(--font-heading);
}

.footer__title {
    font-family: var(--font-heading);
}

.gallery__item figcaption {
    font-family: var(--font-heading);
}
