/* UTees Brand Fonts */

/* Proxima Soft - Primary Brand Font */
@font-face {
  font-family: 'Proxima Soft';
  src: url('./proxima/Proxima Soft/ProximaSoft-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Soft';
  src: url('./proxima/Proxima Soft/ProximaSoft-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Soft';
  src: url('./proxima/Proxima Soft/ProximaSoft-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Soft';
  src: url('./proxima/Proxima Soft/ProximaSoft-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Liberator - Display Font for Headlines */
@font-face {
  font-family: 'Liberator';
  src: url('./liberator/Liberator/Liberator-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Liberator';
  src: url('./liberator/Liberator/Liberator-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Liberator';
  src: url('./liberator/Liberator/Liberator-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Font Stack Variables */
:root {
  --utees-font-primary: 'Proxima Soft', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --utees-font-display: 'Liberator', 'Proxima Soft', -apple-system, BlinkMacSystemFont, sans-serif;
  --utees-font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes */
  --utees-text-xs: 0.75rem;     /* 12px */
  --utees-text-sm: 0.875rem;    /* 14px */
  --utees-text-base: 1rem;      /* 16px */
  --utees-text-lg: 1.125rem;    /* 18px */
  --utees-text-xl: 1.25rem;     /* 20px */
  --utees-text-2xl: 1.5rem;     /* 24px */
  --utees-text-3xl: 1.875rem;   /* 30px */
  --utees-text-4xl: 2.25rem;    /* 36px */
  
  /* Line Heights */
  --utees-leading-tight: 1.25;
  --utees-leading-normal: 1.5;
  --utees-leading-relaxed: 1.75;
  
  /* Font Weights */
  --utees-font-light: 300;
  --utees-font-normal: 400;
  --utees-font-medium: 500;
  --utees-font-semibold: 600;
  --utees-font-bold: 700;
}