/**
 * Self-hosted fonts for GoldNP
 * 
 * Fonts to download:
 * 1. Inter: https://fonts.google.com/specimen/Inter
 *    - Download Inter font family (weights: 400, 500, 600, 700)
 *    - Extract woff2 files to main/static/fonts/inter/
 * 
 * 2. Material Symbols Outlined: 
 *    - Use Google Fonts Helper: https://gwfh.mranftl.com/fonts/material-symbols-outlined
 *    - Or download from: https://fonts.google.com/icons
 *    - Extract woff2 files to main/static/fonts/material-symbols/
 */

/* Inter Font Family */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-semibold.woff2') format('woff2');
}

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

/* Material Symbols Outlined */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/material-symbols/material-symbols-outlined.woff2') format('woff2');
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
