I'm trying to change the calcite heading to bold. I looked through the CSS property and found there is a property called -for changing it to bold:
--calcite-font-weight-bold:600
But I'm not sure how to make the following headings bold: Heading 1, heading 2
<script
src="https://js.arcgis.com/calcite-components/1.0.0-beta.99/calcite.esm.js"
type="module"
></script>
<link
rel="stylesheet"
href="https://js.arcgis.com/calcite-components/1.0.0-beta.99/calcite.css"
/>
<calcite-shell>
<calcite-shell-panel slot="panel-start" position="start" resizable="false">
<calcite-panel heading="Widget">
<calcite-block collapsible heading="Heading 1" open>
<calcite-block collapsible heading="Heading Subsection 1" closed>
</calcite block>
<calcite-block collapsible heading="Heading Subsection 2" closed>
</calcite block>
</calcite-block>
<calcite-block collapsible heading="Heading 2" open>
<!--contains calcite blocks for heading 2*/-->
</calcite-block>
</calcite-panel>
</calcite-shell-panel>
</calcite shell>
@Sage_Wall