/* Anuphan Font Family - Local Files */
@font-face {
  font-family: 'Anuphan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('./anuphan-100.ttf') format('truetype');
}

@font-face {
  font-family: 'Anuphan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('./anuphan-200.ttf') format('truetype');
}

@font-face {
  font-family: 'Anuphan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./anuphan-300.ttf') format('truetype');
}

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

@font-face {
  font-family: 'Anuphan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./anuphan-500.ttf') format('truetype');
}

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

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

/* CSS Variables for Anuphan Font */
:root {
  --font-anuphan: 'Anuphan', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Apply Anuphan as default font */
body {
  font-family: var(--font-anuphan);
} 