Say I am solving an equation numerically -- the derivatives in the equation I find by a finite difference scheme with an accuracy of the grid spacing $h$.
Does this imply that the final solution I find to the equation has an error at least on the order of the the square of the grid spacing?
No, the derivatives need not be exact. If you have somewhat correct derivatives that, among others, can be obtained from divided differences, then the resulting approximate method like the simplified Newton method is contractive, you get (at least) geometric convergence to the solution and the error in the numerical limit is the error of the step computation, i.e., function evaluation scaled by division by the derivative.
If you can make the derivative (dynamically) as "exact" as the function value is "large", i.e., the computed derivative is $J_k=f'(x_k)+O(f(x_k))$, then the Newton method will still converge quadratically, and a measure for the distance to the solution is the length of the last Newton step. Which is in the numerical limit the same measure as above.