What Roy says is true. I think you need to clean your deployment directory and run the app again after the adjustment.
$font-size-default; 14px;
should be:
$font-size-default: 14px;
Note the difference is in using “:” instead of “;” after the variable.
Thaks