/*
 * FPF Design System 2.1 — typography
 * Scale extracted from the Figma "Size/*" tokens (desktop scale). Load
 * after base.css. Each class sets font-family, weight, size and
 * line-height only — colour is left to the consumer.
 *
 * Token   Spec      Class
 * Size/1000  80/92  .fpf-text-display-xxl
 * Size/900   64/74  .fpf-text-display-xl
 * Size/800   40/52  .fpf-text-heading-xl
 * Size/700   32/40  .fpf-text-heading-l
 * Size/600   24/32  .fpf-text-heading-m
 * Size/500   20/28  .fpf-text-label-l
 * Size/400   16/22  .fpf-text-body
 * Size/300   14/20  .fpf-text-body-s
 * Size/200   12/16  .fpf-text-caption
 * Size/100   10/14  .fpf-text-caption-xs
 */

.fpf-text-display-xxl {
  font-family: var(--fpf-font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 92px;
  letter-spacing: -0.01em;
}

.fpf-text-display-xl {
  font-family: var(--fpf-font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 74px;
  letter-spacing: -0.01em;
}

.fpf-text-heading-xl {
  font-family: var(--fpf-font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.fpf-text-heading-l {
  font-family: var(--fpf-font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}

.fpf-text-heading-m {
  font-family: var(--fpf-font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.fpf-text-label-l {
  font-family: var(--fpf-font-labels);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.fpf-text-body {
  font-family: var(--fpf-font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.fpf-text-body-s {
  font-family: var(--fpf-font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.fpf-text-caption {
  font-family: var(--fpf-font-text);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.fpf-text-caption-xs {
  font-family: var(--fpf-font-text);
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
}

.fpf-text-mono {
  font-family: var(--fpf-font-mono);
}
