Tokenizer fails to tokenize font property correctly if line-height is using a custom property. Example of CSS that is not tokenized correctly: ``` html { font: 1em/var(--line-height); } ``` Tokenizer seems to think that `1em/var` is a function. I created a failing test for this here: https://github.com/lauriii/postcss/commit/87085589fa6ed303f0f2052f424214a54a804b72 This trickles down to https://github.com/shellscape/postcss-values-parser. I also created a failing test for that https://github.com/lauriii/postcss-values-parser/commit/d0bbbbcae47afee98f2d367e3fd0e525d0480cfe. This finally trickles down to https://github.com/postcss/postcss-custom-properties. I did also create a failing test for that: https://github.com/lauriii/postcss-custom-properties/commit/6de537ec9c25c87f3f5b41be0dd0f353a9f83e28.