/* Self-hosted fonts. Avoids CDN font-loading glitches.
   NibPro ships as static weights (Light/Regular/SemiBold/Bold/Black + italics);
   Sora is a variable font (one file covers a weight range);
   Lato ships as static weights. */

/* ---- NibPro (headings / display) ---- */
@font-face {
  font-family: 'NibPro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/NibPro-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/NibPro-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/NibPro-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/NibPro-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/NibPro-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/NibPro-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/NibPro-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/NibPro-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/NibPro-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'NibPro';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/NibPro-BlackItalic.ttf') format('truetype');
}

/* ---- Inter (body / UI) — variable font, pairs with NibPro headings ---- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter.woff2') format('woff2');
}

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

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

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

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/lato-900.woff2') format('woff2');
}
