/* 1. Importación de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@700;800&display=swap');

/* 2. Aplicar Inter a textos, pero NO a elementos SVG ni iconos de FontAwesome */
html, body, p, span, a, input, select, textarea, button, label, li, td, th {
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Aplicar Montserrat solo a los títulos */
h1, h2, h3, h4, h5, h6, .stat-item h2, .legal-banner h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

/* 4. Protección específica para iconos (FontAwesome y SVGs) */
.fa, .fas, .fab, .far, svg, svg * {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif !important; /* Mantiene FontAwesome */
}