/**
 * Speeday Font Branding
 * Styles Rally Industries site branding with Speeday font
 * Note: Speeday font does not support numbers - version tags use default font
 */

@font-face {
    font-family: 'Speeday';
    src: url('../fonts/Speeday-Regular-FFP.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.brand {
    font-family: 'Speeday', sans-serif;
    letter-spacing: 0.05em;
}

/* Ensure consistent styling across all uses of brand class */
.site-header .brand {
    font-family: 'Speeday', sans-serif;
    letter-spacing: 0.05em;
}

.footer-brand {
    font-family: 'Speeday', sans-serif;
    letter-spacing: 0.05em;
}

/* Version tags contain numbers - use default system font since Speeday doesn't support numbers */
.ver {
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: normal;
}

/* Region tag (NZ/Australia) - uses Speeday font with site-appropriate color (gold for Australia) */
.brand-region {
    font-family: 'Speeday', sans-serif;
    font-size: 0.85em;
    color: #d4a520;
    letter-spacing: 0.05em;
}