/*
 * Lexend font face declarations.
 * Loaded as a separate <link> in the public layout so Vite's CSS pipeline
 * doesn't try to resolve the local TTF URLs as module assets — in dev mode
 * the rewritten paths point at the Vite origin (:5173) where public/ files
 * are not served, causing 404s. Keeping these declarations in a plain CSS
 * file served by Laravel keeps the URLs absolute and avoids the dev noise.
 */
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/Font/Lexend/static/Lexend-Black.ttf') format('truetype');
}
