// Applies one design-system text style — the four `--sys-text-style-*` tokens that compose it.

@mixin text-style($name) {
    font-family: var(--sys-text-style-#{$name}-font-family);
    font-size: var(--sys-text-style-#{$name}-size);
    font-weight: var(--sys-text-style-#{$name}-weight);
    line-height: var(--sys-text-style-#{$name}-line-height);
}
