/**
 * LWS Options Lab - Typography
 * Founders Grotesk Font Loading
 */

/* Founders Grotesk font faces */
@font-face {
    font-family: 'Founders Grotesk';
    src: url('../fonts/FoundersGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('../fonts/FoundersGrotesk-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('../fonts/FoundersGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Aplicar Founders Grotesk SOLO en frontend (NO en admin de WordPress) */
body:not(.wp-admin) body,
body:not(.wp-admin) html,
.lws-ol-archive-container,
.lws-archivo-container,
.lws-dashboard-container,
.lws-student-dashboard,
.lws-single-post,
.lws-single-video,
.lws-ol-single-container,
.lws-ol-dashboard {
    font-family: 'Founders Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Optimización de renderizado de fuentes */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
