/* Local Sora font definitions.
 * Place font files in `storage/app/public/fonts/` and ensure
 * `php artisan storage:link` is set up so they are served from
 * `/storage/fonts/...` (no CDNs used).
 */

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/storage/fonts/Sora-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/storage/fonts/Sora-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/storage/fonts/Sora-Bold.woff2') format('woff2');
}

body {
    font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
        sans-serif;
}

