/* ======================================= */
/* Archivo: style.css                      */
/* Propósito: Importar fuentes de Google   */
/* ======================================= */

/* Importamos una fuente Serif para los títulos (Autoridad y Elegancia) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* Importamos una fuente Sans-serif para el cuerpo (Claridad y Legibilidad) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');


/* CSS PERSONALIZADO (Mínimo) */
/* Este estilo asegura que la fuente se aplique correctamente al HTML */
/* Esto reemplaza la fuente por defecto de Tailwind */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}