You are saying toFloat can return any type belonging to Floating typeclass but you are restricting it to Float, which is wrong. Your function is polymorphic in a so you just can not return an instance of Floating, it should be able to work with all the instances.
Otherway you can understand this by
toFloat :: (Read a,Floating a) => String -> a
toFloat s = read s
In ghci
*Main> :t toFloat "12.1"
toFloat "12.1" :: (Floating a, Read a) => a
*Main> :t (toFloat "12.1" :: Float)
(toFloat "12.1" :: Float) :: Float
*Main> :t (toFloat "12.1" :: Double)
(toFloat "12.1" :: Double) :: Double
Since it returns type belonging to typeclass Floating you should be able to convert it to any type (belonging to Floating) by providing explicit type signatures after function is applied.
On the other hand remember your case when you are explicitly returning Float now you can not just say I expect Double from this function because that can not happen without explicit conversion.
Another way to understand how horrible your assumption is consider function read
read :: Read a => String -> a
Now here according to you, you can just return say Int for everything because Int has an instance for Read. Now you can understand what will happen if you do something like
read "12" + (1.2 :: Double)