/* ======================================================
   Font Family
====================================================== */
:root {
  --font-primary: 'Roboto', 'Noto Sans', system-ui, sans-serif;
}

/* ======================================================
   Headings
====================================================== */
.text-display-h1 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

.text-heading-h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.text-subheading-h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-primary);
}

/* ======================================================
   Body
====================================================== */
.text-body-lg {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
}

.text-body-md {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.text-body-sm {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* ======================================================
   Buttons / Labels (文字本身)
====================================================== */
.text-button {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-button-text);
}
