/* Manifold Font Family - For "CERBERUS" */
@font-face {
    font-family: 'Manifold';
    src: url('./manifold.otf') format('opentype'),
         url('./manifold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Tsing Font Family - For "Soluciones" */
@font-face {
    font-family: 'Tsing';
    src: url('./Tsing.woff2') format('woff2'),
         url('./Tsing.woff') format('woff'),
         url('./Tsing.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Simplified Font System - Better legibility and Spanish accent support */
:root {
    /* Primary font stack - excellent Spanish support */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Title font stack - modern and readable */
    --font-title: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Body text font stack - optimized for readability */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Monospace for tech labels */
    --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, 'Cascadia Code', 'Ubuntu Mono', Consolas, monospace;
    
    /* Brand fonts - specifically for company name */
    --font-cerberus: 'Manifold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-soluciones: 'Tsing', 'JetBrains Mono', 'Fira Code', monospace;
}

/* Base typography classes */
.font-title {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.font-body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

.font-mono {
    font-family: var(--font-mono);
    font-weight: 400;
}

/* Brand-specific font classes */
.font-cerberus {
    font-family: var(--font-cerberus);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.font-soluciones {
    font-family: var(--font-soluciones);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Utility classes for different contexts */
.font-hero {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.font-tech-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.font-section-title {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.font-card-title {
    font-family: var(--font-title);
    font-weight: 600;
}

.font-card-text {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
} 