/**
 * Tavana Theme - Font Face Definitions
 * 
 * Main font for entire platform
 * Uses main.woff and main.ttf
 */

/* Main Font */
@font-face {
    font-family: 'Main';
    src: url('main.woff') format('woff'),
         url('main.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Main';
    src: url('main.woff') format('woff'),
         url('main.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Apply font globally to entire platform */
html,
body,
*:not([data-lucide]):not(.dashicons):not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: 'Main', Tahoma, Arial, sans-serif !important;
}

/* Reset for code elements */
code, pre, kbd, samp {
    font-family: monospace !important;
}
