/***

In this file we will fetch theme fields set in Hubspot backend (Theme Fields) and expose them as CSS variables/properties in the :root scope,
that way we can reference them in our compiled CSS, this file needs to be a .css file because Sass will not compile Hubspot variables
and Hubspot can only parse dynamic field values on .css files.

Fields set in fields.json should be declared here. Transform field ID into camelCased CSS properties/variables. 

Example:

:root {
    --globalFontSize: px;
}

Then in our Sass files, we'll reference it this way:

body {
    font-size: var(--globalFontSize);
}

***/

:root {

}