/*
 * ThemesCraft — self-hosted webfonts.
 * Newsreader + Inter are variable fonts (single file spans the weight range).
 * IBM Plex Mono ships as two static weights. No external requests.
 * src paths are relative to this file (assets/css/) → assets/fonts/.
 */

/* Inter — variable, 100–900 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var.woff2') format('woff2');
}

/* Newsreader — variable upright, 200–800 */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/newsreader-var.woff2') format('woff2');
}

/* Newsreader — variable italic, 200–800 */
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/newsreader-italic-var.woff2') format('woff2');
}

/* IBM Plex Mono — 400 */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibmplexmono-400.woff2') format('woff2');
}

/* IBM Plex Mono — 500 */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibmplexmono-500.woff2') format('woff2');
}
