The 0.3V will be divided down to something like 0.2V, well within spec for a logic LOW

To explain slightly more about logic thresholds:
Every logic family (this includes ATmega series of microcontrollers which are a family) standardizes on the voltages that represent logic HIGH and logic LOW. But there are two specifications each for HIGH and LOW.
Any device _outputing_ a LOW is _required_ to generate a voltage below VOL. Any device _reading_ a logic LOW is required to accept any voltage from 0 to VIL as "LOW".
For instance for the ATmega running at 5V supply, VOL = 0.9V and VIL = 1.5V. This means upto 0.6V of noise can be injected onto the signal line between the devices and a LOW will still always be recognised correctly. In digital circuits there is always noise being injected via stray inductance and capacitance, so this "noise immunity" can be very important.
On the high side VOH = 4.2V and VIH = 3.0V. Thus you want your resistive divider to output between 4.2V and 5.0V for a HIGH and between 0.0 and 0.9V for a LOW.
At a pinch you will get away with the ranges 3.0V..5.0V and 0.0V..1.5V, but this means you lose "noise immunity" - there is a risk of noise interfering with the correct recognition of the logic signal. 4.5V for HIGH and 0.2V for LOW are fine of course.
One conseqeuence of the VIL=3.0V means that most 3.3V logic devices can drive the Arduino inputs (but with lower than normal noise immunity).