/**
 * Fuentes para SITEC
 * Opción 1: Gotham (local - si están copiadas)
 * Opción 2: Montserrat de Google Fonts (fallback)
 */

/* Google Fonts - Montserrat (similar a Gotham) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

/* Gotham Bold - Títulos */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Gotham Medium - Subtítulos (si existe) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Gotham Book - Textos (si existe) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Gotham Light - Textos secundarios (si existe) */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Aplicar fuentes - Gotham primero, Montserrat como fallback */
body {
    font-family: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-weight: 700;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.font-book {
    font-weight: 400;
}

.font-light {
    font-weight: 300;
}

