Type Weight Weight defines the font-weight of the type element.
Important Notes: If font weight is not defined, weight will be regular.
Demo

This font-weight is extrabold.

This font-weight is bold.

This font-weight is semibold.

This font-weight is regular.

This font-weight is light.

Twig
{% include '@bolt-elements-type/type.twig' with {
  content: 'This is font-weight extrabold.'
  weight: 'extrabold',
} only %}
HTML
<p class="e-bolt-type e-bolt-type--weight-extrabold">This font-weight is extrabold.</p>