/* Jost — the brand font used across the desktop (Dashly) site.
   Self-hosted so the mobile PWA matches the desktop look without a
   Google Fonts round-trip. Weights mirror the desktop theme: 400 (Book),
   400 italic, 500 (Medium) and 600 (Semi). Heavier weights (700+) that the
   UI requests fall back to the closest available weight and render fine. */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/jost/Jost-400-Book.woff2') format('woff2'),
         url('../fonts/jost/Jost-400-Book.woff') format('woff'),
         url('../fonts/jost/Jost-400-Book.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/jost/Jost-400-BookItalic.woff2') format('woff2'),
         url('../fonts/jost/Jost-400-BookItalic.woff') format('woff'),
         url('../fonts/jost/Jost-400-BookItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/jost/Jost-500-Medium.woff2') format('woff2'),
         url('../fonts/jost/Jost-500-Medium.woff') format('woff'),
         url('../fonts/jost/Jost-500-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/jost/Jost-600-Semi.woff2') format('woff2'),
         url('../fonts/jost/Jost-600-Semi.woff') format('woff'),
         url('../fonts/jost/Jost-600-Semi.ttf') format('truetype');
}
