When building custom components, variables needs to ALWAYS be used when applicable. Doing so ensures design consistency.
Most variables are defined as maps to enable generation of helpers. Since getting values from maps makes the code more cluttered, it's encouraged to use the shorthand variables instead.
Do use: $font-size-medium
Don not use: map-get($font-sizes, 'medium')