/* Bookshare typography.
   Display / headings  -> Work Sans SemiBold, line-height 1.25
   UI / body / labels  -> Inter, line-height 1.5 */

:root {
  --font-display: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Display scale (Work Sans SemiBold, lh 1.25) */
  --text-display-2xl: 120px;
  --text-display-xl: 80px;
  --text-display-lg: 60px;
  --text-display-md: 40px;
  --text-display-sm: 30px;

  /* Heading / body scale (Inter, lh 1.5) */
  --text-heading: 26px;
  --text-title: 20px;
  --text-lead: 18px;
  --text-body: 16px;
  --text-sm: 14px;
  --text-xs: 12px;

  --leading-tight: 1.25;
  --leading-normal: 1.5;
}

/* Display specimens (Work Sans SemiBold) */
.bs-display-2xl { font-family: var(--font-display); font-weight: 600; font-size: var(--text-display-2xl); line-height: 1.25; color: var(--text-main-primary); }
.bs-display-xl  { font-family: var(--font-display); font-weight: 600; font-size: var(--text-display-xl);  line-height: 1.25; color: var(--text-main-primary); }
.bs-display-lg  { font-family: var(--font-display); font-weight: 600; font-size: var(--text-display-lg);  line-height: 1.25; color: var(--text-main-primary); }
.bs-display-md  { font-family: var(--font-display); font-weight: 600; font-size: var(--text-display-md);  line-height: 1.25; color: var(--text-main-primary); }
.bs-display-sm  { font-family: var(--font-display); font-weight: 600; font-size: var(--text-display-sm);  line-height: 1.25; color: var(--text-main-primary); }

/* Heading + body (Inter) */
.bs-heading { font-family: var(--font-body); font-weight: 700; font-size: var(--text-heading); line-height: 1.5; color: var(--text-main-primary); }
.bs-title   { font-family: var(--font-body); font-weight: 600; font-size: var(--text-title);   line-height: 1.5; color: var(--text-main-primary); }
.bs-lead    { font-family: var(--font-body); font-weight: 500; font-size: var(--text-lead);    line-height: 1.5; color: var(--text-main-secondary); }
.bs-body    { font-family: var(--font-body); font-weight: 400; font-size: var(--text-body);    line-height: 1.5; color: var(--text-main-secondary); }
.bs-body-bold { font-family: var(--font-body); font-weight: 700; font-size: var(--text-body);  line-height: 1.5; color: var(--text-main-primary); }
.bs-label   { font-family: var(--font-body); font-weight: 500; font-size: var(--text-sm);      line-height: 1.5; color: var(--text-main-primary); }
.bs-caption { font-family: var(--font-body); font-weight: 400; font-size: var(--text-xs);      line-height: 1.5; color: var(--text-main-tertiary); }
