/* ==========================================================================
   Design Tokens & Font Declarations
   ========================================================================== */

@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --tb-red: #e71c1e;
  --tb-red-dark: #c41618;
  --tb-teal: #70c8dc;
  --tb-teal-dark: #00a8d4;
  --color-heading: #111111;
  --color-body: #444444;
  --color-body-light: #666666;
  --color-meta: #888888;
  --color-border: #e5e5e5;
  --color-bg: #ffffff;
  --color-bg-dark: #111111;
  --container-max: 1200px;
  --header-height: 48px;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading-sans: 'Poppins', sans-serif;
  --grid-gap: 32px;
  --section-padding: 80px;
  --transition: 200ms ease;
  --z-header: 100;
  --z-menu: 200;
  --z-progress: 300;
}

[data-theme="dark"] {
  --color-heading: #f0f0f0;
  --color-body: #b0b0b0;
  --color-body-light: #999999;
  --color-meta: #777777;
  --color-border: #2a2a2a;
  --color-bg: #111111;
  --color-bg-dark: #0a0a0a;
}
