/* Shared foundation for auth.html / dashboard.html / index.html.
   Phase 1 of the site cleanup: centralize the @font-face declarations and palette
   that were previously copy-pasted in each page's own <style> block. Each page's
   own inline styles/CSS still take precedence for now — later phases migrate them
   onto these custom properties instead of raw literals. */

@font-face {
  font-family: 'PresslySans';
  src: url('PresslySans-Book.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'PresslySans';
  src: url('PresslySans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  --pressly-accent: #fd4c23;
  --pressly-accent-hover: #e53d14;
  --pressly-text: #111009;
  --pressly-muted: #6b6560;
  --pressly-faint: #b0a89f;
  --pressly-bg: #f9f8f6;
  --pressly-border: rgba(17, 16, 9, .07);
  --pressly-border-strong: rgba(17, 16, 9, .12);
}
