/*
 * Archivo: assets/fonts.css
 * Corrige errores 404 al enlazar los archivos OTF de Geomanist.
 * NOTA: Los nombres de archivo se han ajustado para coincidir con tus archivos subidos (ej: Geomanist-Black.otf).
 * La ruta es relativa a este archivo CSS.
 */

/* 1. Geomanist Black */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-Black.otf') format('opentype');
    font-weight: 900; /* o black */
    font-style: normal;
    font-display: swap;
}

/* 2. Geomanist Bold */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-Bold.otf') format('opentype');
    font-weight: 700; /* o bold */
    font-style: normal;
    font-display: swap;
}

/* 3. Geomanist Regular (Asumimos que es Geomanist-Book.otf, que es la más cercana a Regular) */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-Book.otf') format('opentype');
    font-weight: 400; /* o regular */
    font-style: normal;
    font-display: swap;
}

/* 4. Geomanist Light (Asumimos que es Geomanist-ExtraLight.otf) */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-ExtraLight.otf') format('opentype');
    font-weight: 300; /* o light */
    font-style: normal;
    font-display: swap;
}

/* 5. Geomanist Regular Italic (Asumimos que es Geomanist-BookItalic.otf) */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-BookItalic.otf') format('opentype');
    font-weight: 400; 
    font-style: italic;
    font-display: swap;
}

/* Si necesitas el Bold Italic */
@font-face {
    font-family: 'Geomanist';
    src: url('fonts/Geomanist-BoldItalic.otf') format('opentype');
    font-weight: 700; 
    font-style: italic;
    font-display: swap;
}