https://pico-8.fandom.com/wiki/P8PNGFileFormatThe images are RGBA PNGs. So for each display pixel there's a byte for each color channel and the alpha channel. The two least significant bits in each byte are a quarter of a PICO-8 data byte. Those bits are read from a channel byte and concatenated in RGBA order to get a data byte.
Using the LSBs for each channel means the those swizzled bits won't contribute very much to that pixel's color value. At worst it would just look like noise in the image.
Also by putting the data inside the image data of a PNG it won't be stripped off by some optimizer or hosting service.