While you may make the conversion in real time as shown by @turivishal, I think it would be best to permanently convert you field montoTotal to the appropriate number type.
The field would take less space.
Your code will be more efficient since you will not convert every time you compute with it.
Natural sorting order is correct for numbers but not for string:
The string “10.50” is less than the string “9.50” but the number 10.50 is bigger that the number 9.50.