/* fonts.css - Fontes personalizadas */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Aplicar fontes globais */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Títulos com fontes diferentes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

/* Elementos específicos */
.section-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.nav-links {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Ajustes de legibilidade */
body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}