/* =============================================================
   DINOT Font Family — Self-hosted
   Place the DINOT font files at /assets/fonts/ with these names:
     - DINOT-Light.woff2
     - DINOT-Regular.woff2
     - DINOT-Medium.woff2
     - DINOT-Bold.woff2
     - DINOT-Black.woff2

   We provide .woff2 (modern) and optional .woff (legacy) sources.
   font-display: swap prevents invisible text while loading.
   ============================================================= */

@font-face {
    font-family: 'DINOT';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/DINOT-Light.woff2') format('woff2'),
         url('../fonts/DINOT-Light.woff')  format('woff');
}

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

@font-face {
    font-family: 'DINOT';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/DINOT-Medium.woff2') format('woff2'),
         url('../fonts/DINOT-Medium.woff')  format('woff');
}

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

@font-face {
    font-family: 'DINOT';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/DINOT-Black.woff2') format('woff2'),
         url('../fonts/DINOT-Black.woff')  format('woff');
}
