/*
 * Local self-hosted Inter font loader.
 * Font files are bundled from the official Inter download package.
 */

@font-face {
  font-family: 'InterVariable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

@font-face {
  font-family: 'InterVariable';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}

/* Legacy alias kept for compatibility with upstream Inter docs/examples. */
@font-face {
  font-family: 'Inter var';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter var';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}

/* Project styles reference `Inter`, so point that family at the variable font. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('./Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}
