== Background
While the Less compiler allows to calculate a Less var independently of the content value, a CSS custom properties as value isn't working that way.
With the introduction of {T387778}, certain Less token values have changed to carry CSS custom properties.
Example:
```
@max-width-search: unit( ( 500px / @font-size-browser / @font-size-small ), em ); // 35.71428571em @ 16 & 0.875em T270202
```
Note that @font-size-browser = 16. The Codex token @font-size-small used to be 0.875rem and is being updated to var( --font-size-small, 0.875rem ). This is happening because you can't use CSS variables inside most Less functions, like unit().
== Goal
Replace non-working token function calls
== Acceptance criteria
[] All cases of `unit()` calls are evaluated and the affected tokens are replaced to succeed unchanged rendering in default font size.