/* =====================================
   TEXT PRIMITIVES
   ===================================== */

/* Base text reset */
.text {
    font-family: var(--font-sans);
    font-weight: var(--font-regular);
    line-height: var(--line-normal);
    color: var(--color-text-primary);
  }
  
  
  /* Title / heading text */
  .text-title {
    font-size: var(--text-title);
    font-weight: var(--font-semibold);
    line-height: var(--line-tight);
    color: var(--color-text-primary);
  }
  
  
  /* Body text */
  .text-body {
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--line-normal);
    color: var(--color-text-secondary);
  }
  
  
  /* Metadata / secondary text */
  .text-meta {
    font-size: var(--text-meta);
    font-weight: var(--font-regular);
    line-height: var(--line-normal);
    color: var(--color-text-muted);
  }
  