/**
 * Oak Sans Font - Self-hosted version
 * Copyright 2022 The Oak Sans Project Authors
 * Licensed under the SIL Open Font License, Version 1.1.
 * License URL: http://scripts.sil.org/OFL
 * 
 * This Font Software is licensed under the SIL Open Font License, Version 1.1.
 * This license is available with a FAQ at: http://scripts.sil.org/OFL
 * 
 * Font weights used in TradeAlicious design system:
 * - 400 (Regular)
 * - 500 (Medium)
 * - 600 (SemiBold)
 * - 700 (Bold)
 */

/* Oak Sans Regular - Weight 400 */
@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Oak Sans Medium - Weight 500 */
@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Oak Sans SemiBold - Weight 600 */
@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Oak Sans Bold - Weight 700 */
@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Oak Sans Black - Weight 800/900 - Using Bold as fallback */
@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'oak-sans';
  src: url('./oak-sans-bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}